home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-02 | 619 b | 30 lines |
-
- include $(ROOT)/usr/include/make/commondefs
-
- #
- # Makefile for newton demo
- #
-
- TARGETS = newton
- CVERSION=-xansi
- LLDLIBS = -lgl -lm -lmpc
- LCOPTS = -float
- # Gotta get rid of dependency on what machine it is being made on
- # -- should do it right, and not just assume most powerful machine,
- # but that involves changing a lot of code.
- LCDEFS = -DCLOVER2
- PROTOTYPES=
-
- CFILES = main.c play.c models.c physics.c draw.c slave.c slider.c cwd.c
- HFILES = config.h newton.h windows.h slider.h
-
- default all: $(TARGETS)
-
- install:
- $(MAKE) $(TARGETS)
-
- include $(COMMONRULES)
-
- ${TARGETS}: ${OBJECTS}
- ${CCF} -o $@ ${OBJECTS} ${LDFLAGS}
-